status barのpage titleをfixedするUserCSS
status bar
の
page title
をfixedする
UserCSS
リアルタイム文字カウンター
を使うときに必要
margin-right: auto
で左寄せにしているのを
left: 0
にするだけ
code:style.css
.status-bar > div.page-title {
position: fixed;
bottom: 0;
left: 0;
}